home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 11 / PC World Interactive 11.iso / share / convert / o2cv10.arj / O2CPACK / EXAMPLE1.BAT < prev    next >
DOS Batch File  |  1996-02-25  |  428b  |  24 lines

  1. @rem This file is part of the Object to Coff (O2C) package
  2. @rem -----------------------------------------------------
  3.  
  4. @echo off
  5. echo Making & Running example 1 (for djgpp 2)
  6. echo Running assembler
  7. tasm example1.asm /m /ml
  8.  
  9. echo Running converter
  10. call o2c example1.obj
  11.  
  12. echo Running compiler
  13. gcc example.c example1.o
  14.  
  15. echo Running program
  16. a.exe
  17.  
  18. del a.out
  19. del a.exe
  20. del example1.o
  21. del example1.obj
  22. echo.
  23.  
  24.